chore: replace Vercel native GitHub integration with explicit GitHub Actions deploy workflows#521
Merged
tstirrat15 merged 7 commits intomainfrom Feb 26, 2026
Merged
Conversation
Implements automated deployment workflows to replace Vercel's built-in Git integration: - Preview deployments for pull requests with status comments - Production deployments on main branch pushes - Disables Vercel Git integration to prevent duplicate deployments Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
- Pin all GitHub Action references to commit hashes - Add DNS label truncation to branch sanitization in preview deploy - Fix --prod flag order in production deploy command - Set auto-inactive: false on production GitHub Deployment Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Contributor
|
Preview deployment status for this pull request.
|
Quote all string scalars, use "on": to avoid truthy warnings, add document-start markers, and fix inline comment spacing to comply with the quoted-strings yamllint rules enforced in CI. Also adds pnpm lint:yaml script to run yamllint locally. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
markdownlint has conflicting rules with oxfmt, and oxfmt already covers formatting checks in this workflow. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Disables the comments spacing rule to avoid requiring 2 spaces before inline hash comments on action pin references. Also removes the lint:markdown script from package.json as markdownlint conflicts with oxfmt. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Moves Vercel deployments from the native Vercel GitHub integration to explicit GitHub Actions workflows, giving us full control over when and how deployments are triggered.
vercel.jsondisables Vercel's automatic git-based deployments so only the workflows trigger deploys.Preview workflow (
vercel-preview.yml):docs-git-<branch>-authzed.vercel.app) in addition to the per-deploy URLProduction workflow (
vercel-production.yml):mainand supports manualworkflow_dispatchAll action references are pinned to commit hashes for supply chain security.
Test plan
main— verify the production workflow runs and the GitHub Deployment is marked successfulAdditional changes:
markers, replaced bare on: with "on": to avoid YAML truthy ambiguity
already covers formatting checks
locally
URL
🤖 Generated with Claude Code